API
Language:

Skip Trace

Provides contact information associated with a property, such as the owner's name, phone number, and email address, aiding in outreach and communication efforts.​

Endpoint URL

https://api.propertyreach.com/v1/skip-traceCopy
Request Body
target
propertyId
int
PropertyReach Property ID
streetAddress
string
What's the property street address
city
string
The city where the property is located.
state
string
State search criteria
zip
string
Property zip code
county
string
The county where the property is located.
fips
string
The Federal Information Processing Standard (FIPS) code for the property's location.
apn
string
The Assessor’s Parcel Number (APN), a unique identifier assigned to the property by the local tax authority.
Response Body
persons[]
firstName
string
required
First Name
middleName
string
Middle Name
lastName
string
required
Last Name
phones[]
emails[]
meta
status
decimal
required
Response status
message
string
required
Response message.
requestId
string
Unique ID for the request.
resultCount
int
Number of results found
billableRequests
int
billableAmount
decimal
  • Source
  • JSON
Copy
var body = {}; var options = { method: 'POST', body: JSON.stringify(body), headers: { 'x-api-key': 'test_examp****' } }; var url = 'https://api.propertyreach.com/v1/skip-trace'; fetch(url, options) .then(response => response.json()) .then(result => console.log(result)) .catch(error => console.log('error', error));
{ }